home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Tools.Dxr / Internal_1_Tools startmovie script.ls < prev    next >
Encoding:
Text File  |  1998-05-04  |  1.7 KB  |  41 lines

  1. global gMasterData, balloonSprite, checkMarks2, gHandCursor, gFingerCursor
  2.  
  3. on startMovie
  4.   setModule(gMasterData, #tools)
  5.   setSoundList(gMasterData, ["22": 0, "23": 0, "24": 0, "25": 0, "26": 0, "27": 0, "28": 0, "29": 0, "30": 0, "31": 0, "32": 0, "33": 0, "34": 0, "35": 0, "36": 0, "37": 0, "38": 0, "39": 0, "40": 0, "41": 0, "42": 0, "43": 0, "43B": 0, "44": 0, "45": 0, "46": 0, "46B": 0, "47": 0, "48": 0, "49": 0, "50": 0, "51": 0, "52": 0, "53": 0, "54": 0, "55": 0, "56": 0, "57": 0])
  6.   if voidp(checkMarks2) then
  7.     set checkMarks2 to [#race: 0, #self: 0, #nonpro: 0, #chefBook: 0, #stages: 0, #plot: 0, #paper: 0]
  8.   end if
  9.   set gHandCursor to [member "hand cursor", member "hand mask"]
  10.   set gFingerCursor to [member "finger cursor", member "finger mask"]
  11.   set balloonSprite to 45
  12.   setFingerCursor(#on, [39, 40, 41, 42, 43, 44])
  13.   initFields()
  14.   keepLittleSounds()
  15.   set the keyDownScript to "quitCatcher"
  16.   cursor(0)
  17. end
  18.  
  19. on initFields
  20.   set vEmptyList to ["memo 1", "memo 2", "memo 3", "chef field A", "chef field 1", "chef field 2", "chef field 3", "chef field 4", "situation", "paper negative", "paper positive", "affirmation", "responses", "chef answers", "plot results", "toss results", "PrintAllPart2"]
  21.   repeat with X in vEmptyList
  22.     set the text of member X to " "
  23.     set the textFont of member X to "Palatino"
  24.     set the textSize of member X to 14
  25.     set the text of member X to EMPTY
  26.   end repeat
  27.   set the text of member "self statement" to " "
  28.   set the textSize of member "self statement" to 18
  29. end
  30.  
  31. on quitCatcher
  32.   if the commandDown and ((the key = "q") or (the key = ".")) then
  33.     stopSounds()
  34.     if iAmActivated(gMasterData) then
  35.       getAllPart2()
  36.     end if
  37.     go("quit", "Menu")
  38.   end if
  39.   pass()
  40. end
  41.